Skip to main content
Version: 1.0.2

Credit transfer Status Update

The UpdateTransactionStatus API enables to update the status of inbound transactions (CCT_IN).

Method: POST

{{URL}}/rtp/rpc/TransactionService/UpdateTransactionStatus

Headers

NameValue
Content-Typeapplication/json
Credential"Basic c3VwcG9ydCsxQG5ldHN5cy1pbmMuY29tOjM5ZDYxOGJkNTVmN5NWQxY2RlNDE5"
Signature"{{signature}}"

Example

Payload Parameters
ParameterDescription

processor

Mandatory

String

Payment channel through which the transaction happens

Example – "FEDNOW" or "TCH"

referenceNumber

Mandatory

String

Unique reference number of the inbound transaction

Example – "2023081892413659999Vfy9n1NLx9kEewF"

status

Mandatory

(Applicable only for TCH)

String

Current status of the transaction

Example – "ACCC"


curl --location '{{URL}}/rtp/rpc/TransactionService/UpdateTransactionStatus' \
--header 'Content-Type: application/json' \
--data '{"processor":"FEDNOW","referenceNumber":"2023081892413659999Vfy9n1NLx9kEewF","status":"ACCC"}'

Request Body (Applicable for both FedNow and TCH)


{
"processor": "FEDNOW",
"referenceNumber": "2023081892413659999Vfy9n1NLx9kEewF",
"status": "ACCC" //applicable only for FedNow
}

Response: 200

Response Parameters
ParameterDescription

message

String

Outcome response message of the request

Example – "Transaction status updated successfully"

rawMessage

(Applicable only for TCH)

String

Raw response message related to the transaction encoded in Base64

Example – "Base64 Value of Received Response"

referenceNumber

String

Unique reference number of the specific transaction for which the status is updated

Example – "2023081892413659999Vfy9n1NLx9kEewF"

response

(Applicable only for TCH)

String

Response received for the given request

Example – "JSON Representation of Received Response"

status

(Applicable only for TCH)

String

Updated status of the transaction

Example – "RCVD"

windowId

(applicable only for TCH)

String

Unique ID used for reconciliation of transactions

Example – "001"

Response Body (Applicable for both FedNow and TCH)


{
"message": "Transaction status updated successfully",
"rawMessage": "Base64 Value of Received Response", //applicable only for TCH
"referenceNumber": "2023081892413659999Vfy9n1NLx9kEewF",
"response": "JSON Representation of Received Response", //applicable only for TCH
"status": "RCVD", //applicable only for TCH
"windowId": "001" //applicable only for TCH
}